home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / misc / executiv.lha / Executive_V1.00 / sysinfo.lzx / examples / test / smakefile < prev    next >
Makefile  |  1991-03-31  |  290b  |  20 lines

  1. #
  2. # This file is public domain.
  3. #
  4. # $Id: smakefile 1.1 1995/05/28 00:02:26 petrin Exp petrin $
  5. #
  6.  
  7. DEBUG     = DEBUG=FULLFLUSH
  8.  
  9. CFLAGS    = MATH=STANDARD $(DEBUG)
  10.  
  11.  
  12. test: test.o
  13.    sc link $(CFLAGS) test.o
  14.  
  15. test.o: test.c defs.h
  16.    sc $(CFLAGS) test.c
  17.  
  18. clean:
  19.    delete test test.lnk test.o
  20.